home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 5 / QRZ Ham Radio Callsign Database - Volume 5.iso / files / amiga / cbbs720j.lzh / cbbs / cbbsp < prev    next >
Encoding:
Text File  |  1992-10-04  |  877 b   |  24 lines

  1. ; Example of starting up a phone line on a single port system.
  2. ; This uses the port B description included in the distributed config.mb
  3. ;
  4. ; ram:mbuser.index is created by all versions of the program to keep track
  5. ; of which callsigns are in the user file. Previous copies of this file
  6. ; should be deleted before starting up the system because they might not
  7. ; contain the same calls as currently exist in user.dat
  8. if exists ram:mbuser.index
  9. delete ram:mbuser.index
  10. endif
  11. cd work:cbbs
  12. ;
  13. ; Start the locker process and wait until it is ready
  14. run locker
  15. waitport VE5VA-LOCK 20
  16. ;
  17. ; I don't need the -z argument when running mb because it is set with the
  18. ; setenv TZ_CHU   command in my s:startup-sequence.
  19. ; Now start up mb on port B at 9600 baud
  20. ; And then wait for it to create the port "CBBS-B" which will indicate that
  21. ; it is ready to go.
  22. run mb -pb -b9600
  23. waitport CBBS-B 20
  24.